home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir36 / getclr10.zip / DEMO.BAT next >
DOS Batch File  |  1994-01-10  |  1KB  |  36 lines

  1. @echo off
  2. call GETCOLOR.BAT
  3.  
  4. rem * * * Substitute your batch file between lines with asterisks * * * * *
  5. echo 
  6. cls
  7. echo 
  8. echo ╔═════════════════════════════════════════════════════════╗
  9. echo ║                                                         ║
  10. echo ║               Demonstration of GET COLOR                ║
  11. echo ║                      Version 1.0                        ║
  12. echo ║                    January 10, 1994                     ║
  13. echo ║                                                         ║
  14. echo ║     Your original screen colors have been captured.     ║
  15. echo ║                                                         ║
  16. echo ║           This text is bright cyan on blue.             ║
  17. echo ║                                                         ║
  18. echo ║   Press any key to finish demo and reset your colors.   ║
  19. echo ║                                                         ║
  20. echo ╚═════════════════════════════════════════════════════════╝
  21. echo f
  22. pause >nul
  23.  
  24. rem * * * Substitute your batch file between lines with asterisks * * * * *
  25.  
  26. rem  You must restore boldattr before foregrnd and backgrnd because setting
  27. rem  bold attribute to zero also resets colors to normal (white on black).
  28.  
  29. echo %boldattr%m
  30. echo %foregrnd%m
  31. echo %backgrnd%m
  32. set boldattr=
  33. set foregrnd=
  34. set backgrnd=
  35. cls
  36.